home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Source Code / Visual Basic Source Code.iso / vbsource / numtow_1 / form1.frm < prev    next >
Text File  |  1998-08-17  |  1KB  |  51 lines

  1. VERSION 5.00
  2. Begin VB.Form Form1 
  3.    Caption         =   "Form1"
  4.    ClientHeight    =   3195
  5.    ClientLeft      =   60
  6.    ClientTop       =   345
  7.    ClientWidth     =   9795
  8.    LinkTopic       =   "Form1"
  9.    ScaleHeight     =   3195
  10.    ScaleWidth      =   9795
  11.    StartUpPosition =   3  'Windows Default
  12.    Begin VB.TextBox Text2 
  13.       Height          =   375
  14.       Left            =   480
  15.       TabIndex        =   2
  16.       Text            =   "Text2"
  17.       Top             =   840
  18.       Width           =   9135
  19.    End
  20.    Begin VB.TextBox Text1 
  21.       Height          =   375
  22.       Left            =   480
  23.       TabIndex        =   1
  24.       Text            =   "1000"
  25.       Top             =   360
  26.       Width           =   1575
  27.    End
  28.    Begin VB.CommandButton Command1 
  29.       Caption         =   "Command1"
  30.       Height          =   495
  31.       Left            =   2040
  32.       TabIndex        =   0
  33.       Top             =   1320
  34.       Width           =   1695
  35.    End
  36. End
  37. Attribute VB_Name = "Form1"
  38. Attribute VB_GlobalNameSpace = False
  39. Attribute VB_Creatable = False
  40. Attribute VB_PredeclaredId = True
  41. Attribute VB_Exposed = False
  42. Option Explicit
  43.  
  44. Private Sub Command1_Click()
  45.  
  46. Dim obj As New ConvertNum.NumtoText
  47.  
  48. Text2.Text = obj.fchange(Text1.Text)
  49.  
  50. End Sub
  51.